1 package com.inigoserrano.isvalidator.alfa.formModel;
2
3
4
5 /***
6 * Here the description of the class
7 *
8 * @license@
9 *
10 * @version @version@
11 * @author @author@
12 */
13 public class ItemOption {
14 private boolean chequeado = false;
15 protected String texto;
16 protected String value = null; //Cada elemento del grupo tiene su propio value
17
18 /***
19
20 */
21 public ItemOption() {
22 super();
23 }
24
25 /***
26
27 */
28 public String getTexto() {
29 return texto;
30 }
31
32 /***
33 * Inserte aquí la descripción del método.
34 * Fecha de creación: (03/11/2001 13:30:48)
35 * @return java.lang.String
36 */
37 public java.lang.String getValue() {
38 return value;
39 }
40
41 /***
42
43 */
44 public boolean isChequeado() {
45 return chequeado;
46 }
47
48 /***
49
50 */
51 public void setChequeado(boolean chequeado) {
52 this.chequeado = chequeado;
53 }
54
55 /***
56
57 */
58 public void setTexto(String texto) {
59 this.texto = texto;
60 }
61
62 /***
63 * Inserte aquí la descripción del método.
64 * Fecha de creación: (03/11/2001 13:30:48)
65 * @param newValue java.lang.String
66 */
67 public void setValue(java.lang.String newValue) {
68 value = newValue;
69 }
70 }
This page was automatically generated by Maven